home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.txt / 000321_sms.antinode@gmail.com_Fri Mar 12 15:00:18 2010.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: reader1.panix.com!panix!newsfeed-00.mathworks.com!newsfeed2.dallas1.level3.net!news.level3.com!postnews.google.com!a18g2000yqc.googlegroups.com!not-for-mail
  2. From: Steven Schweda <sms.antinode@gmail.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: C-Kermit 9.0 for VAX?
  5. Date: Wed, 10 Mar 2010 08:34:00 -0800 (PST)
  6. Organization: http://groups.google.com
  7. Lines: 51
  8. Message-ID: <b024c26a-a8ec-4ac2-89ad-b6662d8d58bd@a18g2000yqc.googlegroups.com>
  9. References: <slrnhn34mm.em3.fdc@panix2.panix.com> <cd3c4f24-9503-451d-a2a6-a82aca4152ad@x22g2000yqx.googlegroups.com> 
  10.     <slrnhn653a.shk.fdc@panix1.panix.com>
  11. NNTP-Posting-Host: 209.98.249.184
  12. Mime-Version: 1.0
  13. Content-Type: text/plain; charset=ISO-8859-1
  14. X-Trace: posting.google.com 1268238840 21856 127.0.0.1 (10 Mar 2010 16:34:00 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: Wed, 10 Mar 2010 16:34:00 +0000 (UTC)
  17. Complaints-To: groups-abuse@google.com
  18. Injection-Info: a18g2000yqc.googlegroups.com; posting-host=209.98.249.184; 
  19.     posting-account=OjKUgAkAAAAXAqdVEKd-Gc8RltEUx3Xq
  20. User-Agent: G2/1.0
  21. X-HTTP-UserAgent: Mozilla/5.0 (X11; U; OpenVMS COMPAQ_Professional_Workstation; 
  22.     en-US; rv:1.8.1.17) Gecko/20081029 SeaMonkey/1.1.12,gzip(gfe),gzip(gfe)
  23. Xref: panix comp.protocols.kermit.misc:15924
  24.  
  25. Frank da Cruz wrote:
  26.  
  27. > If you or somebody with VMS 5.x can send me patches to get around
  28. > any fatal problems building C-Kermit 9.0, I'll be glad to
  29. > incorporate them.  We don't "deprecate" old versions of anything.
  30. > If there is a comment somewhere to that effect, it's not from me.
  31.  
  32.    Regarding large-file support on VMS, I haven't looked
  33. closely at this, but specifying "F" to the builder will get
  34. the C macros _LARGEFILE_SOURCE and _LARGEFILE defined.
  35. Whether that does anything useful for, say, CK_OFF_T is
  36. another question.
  37.  
  38.    Regarding HTTP support on VMS, defining NOHTTP seems to have
  39. little if any effect:
  40.  
  41. $ if vms_ver .lts. "VMS_V62" then cln_def = cln_def
  42. +",NOHTTP,NOCMDATE2TM"
  43.  
  44. Defining only IKSD causes problems.  Adding IKSDCONF does not
  45. help much.  Adding CK_LOGIN reveals that, for example,
  46. "inserver", "isguest", and "local" are all "not declared", and
  47. don't appear in any header files.  I did find some loose
  48. "extern" declarations scattered around in the ".c" files, but
  49. I figured that these couldn't be serious.
  50.  
  51.  
  52.    Regarding VAX builds, there are some suggested changes in:
  53.  
  54.    http://antinode.info/ftp/kermit/v9r0_299_2010-02-01/
  55.  
  56. Patches and notes are in "notes_2010-02-01.txt".  Loose before
  57. and after files are also in that directory.  With these
  58. changes, I could get the following VAX builds to work with no
  59. warnings (and fewer informationals than before):
  60.  
  61.    VMS V5.4, VAX C V3.1-051, UCX V1.3
  62.    @ CKVKER.COM FLIS D "NOCONVROUTINES,INTSELECT,OLDFIB"
  63.  
  64.    VMS V5.5-2, DEC C V4.0-000, UCX V3.1
  65.    @ CKVKER.COM FLIS D "BUGFILL7,INTSELECT"
  66.  
  67.    VMS V6.2, DEC C V6.0-001, UCX V4.0
  68.    @ CKVKER.COM FLIS D
  69.  
  70.    VMS V7.3, Compaq C V6.4-005, TCPIP V5.3 - ECO 4
  71.    @ CKVKER.COM FLIS D "CK_SSL,OPENSSL_DISABLE_OLD_DES_SUPPORT"
  72.  
  73. I didn't do any serious testing with the resulting
  74. executables, but none of the changes should wreck any working
  75. code (I claim).